added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2008 / CSCustomAuthorization / LoginForm.Designer.cs
blobfa302e9ad24583b358d7ce86b6d48c3643955ca4
1 partial class LoginForm
3 /// <summary>
4 /// Required designer variable.
5 /// </summary>
6 private System.ComponentModel.IContainer components = null;
8 /// <summary>
9 /// Clean up any resources being used.
10 /// </summary>
11 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12 protected override void Dispose(bool disposing)
14 if (disposing && (components != null))
16 components.Dispose();
18 base.Dispose(disposing);
21 #region Windows Form Designer generated code
23 internal System.Windows.Forms.Label lbUserName;
24 internal System.Windows.Forms.Label lbPassword;
25 internal System.Windows.Forms.TextBox tbUserName;
26 internal System.Windows.Forms.TextBox tbPassword;
27 internal System.Windows.Forms.Button btnOK;
28 internal System.Windows.Forms.Button btnCancel;
30 //NOTE: The following procedure is required by the Windows Form Designer
31 //It can be modified using the Windows Form Designer.
32 //Do not modify it using the code editor.
33 [System.Diagnostics.DebuggerStepThrough()]
34 private void InitializeComponent()
36 this.lbUserName = new System.Windows.Forms.Label();
37 this.lbPassword = new System.Windows.Forms.Label();
38 this.tbUserName = new System.Windows.Forms.TextBox();
39 this.tbPassword = new System.Windows.Forms.TextBox();
40 this.btnOK = new System.Windows.Forms.Button();
41 this.btnCancel = new System.Windows.Forms.Button();
42 this.SuspendLayout();
43 //
44 // lbUserName
45 //
46 this.lbUserName.Location = new System.Drawing.Point(10, 17);
47 this.lbUserName.Name = "UsernameLabel";
48 this.lbUserName.Size = new System.Drawing.Size(220, 23);
49 this.lbUserName.TabIndex = 0;
50 this.lbUserName.Text = "&User name";
51 this.lbUserName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
52 //
53 // lbPassword
54 //
55 this.lbPassword.Location = new System.Drawing.Point(10, 74);
56 this.lbPassword.Name = "PasswordLabel";
57 this.lbPassword.Size = new System.Drawing.Size(220, 23);
58 this.lbPassword.TabIndex = 2;
59 this.lbPassword.Text = "&Password";
60 this.lbPassword.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
61 //
62 // tbUserName
63 //
64 this.tbUserName.Location = new System.Drawing.Point(12, 37);
65 this.tbUserName.Name = "tbxUsername";
66 this.tbUserName.Size = new System.Drawing.Size(220, 20);
67 this.tbUserName.TabIndex = 1;
68 //
69 // tbPassword
70 //
71 this.tbPassword.Location = new System.Drawing.Point(12, 94);
72 this.tbPassword.Name = "tbxPassword";
73 this.tbPassword.PasswordChar = '*';
74 this.tbPassword.Size = new System.Drawing.Size(220, 20);
75 this.tbPassword.TabIndex = 3;
76 //
77 // btnOK
78 //
79 this.btnOK.Location = new System.Drawing.Point(35, 154);
80 this.btnOK.Name = "btnOK";
81 this.btnOK.Size = new System.Drawing.Size(94, 23);
82 this.btnOK.TabIndex = 4;
83 this.btnOK.Text = "&OK";
84 this.btnOK.Click += new System.EventHandler(this.OK_Click);
85 //
86 // btnCancel
87 //
88 this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
89 this.btnCancel.Location = new System.Drawing.Point(138, 154);
90 this.btnCancel.Name = "btnCancel";
91 this.btnCancel.Size = new System.Drawing.Size(94, 23);
92 this.btnCancel.TabIndex = 5;
93 this.btnCancel.Text = "&Cancel";
94 this.btnCancel.Click += new System.EventHandler(this.Cancel_Click);
95 //
96 // LoginForm
97 //
98 this.AcceptButton = this.btnOK;
99 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101 this.CancelButton = this.btnCancel;
102 this.ClientSize = new System.Drawing.Size(248, 192);
103 this.Controls.Add(this.btnCancel);
104 this.Controls.Add(this.btnOK);
105 this.Controls.Add(this.tbPassword);
106 this.Controls.Add(this.tbUserName);
107 this.Controls.Add(this.lbPassword);
108 this.Controls.Add(this.lbUserName);
109 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
110 this.MaximizeBox = false;
111 this.MinimizeBox = false;
112 this.Name = "LoginForm";
113 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
114 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
115 this.Text = "LoginForm";
116 this.ResumeLayout(false);
117 this.PerformLayout();
120 #endregion